home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 118 / MacAddict 118 2006-06.toast / Software / Development / REALbasic 2006 (demo).dmg / .Trashes / 501 / New Cursors.txt < prev    next >
Text File  |  2005-05-18  |  2KB  |  39 lines

  1. New Stock Cursors
  2. aaron@realsoftware.com
  3.  
  4.  
  5. New to this version of REALbasic is the addition of stock cursors for your application to use.  All these cursors reside in the System.Cursors module and are available on all platforms.  Below is a list of all the new cursors, as well as a general idea of what they should be used for.
  6.  
  7. Hand Cursors
  8. -------------
  9. HandOpen -- this is the open hand cursor which is typically used to designate that something can be grabbed.
  10.  
  11. HandClosed -- the sibling cursor to the open hand.  Usually used while the drag is taking place.
  12.  
  13. FingerPointer -- another common "hand" cursor, this one shows the index finger pointing up.  It's usually used when the cursor is over a link.
  14.  
  15. Arrow Cursors
  16. --------------
  17. StandardPointer -- this is the system arrow cursor and is used for all normal operations.  You can use this in place of the global function ArrowCursor
  18.  
  19. ArrowEastWest -- a pair of arrows pointing East/West.  It's typically used when resizing something horizontally.
  20.  
  21. ArrowNorthSouth -- a pair of arrows pointing North/South.  It's typically used when resizing something vertically.
  22.  
  23. ArrowNortheastSouthwest -- a pair of arrows pointing Northeast/Southwest.  It's typically used when resizing something diagonally from that direction.
  24.  
  25. ArrowNorthwestSoutheast -- a pair of arrows pointing Northwest/Southeast.  It's typically used when resizing something diagonally from that direction.
  26.  
  27. ArrowAllDirections -- also known as a 'fleur', is a set of four arrows pointing both North/South and East/West.  It's usually used when moving objects on Windows.
  28.  
  29. Splitter Cursors
  30. -----------------
  31. SplitterEastWest -- a pair of arrows pointing East/West with a vertical bar between them.  Usually used when sizing a vertical splitter control.
  32.  
  33. SplitterNorthSouth -- a pair of arrows pointing North/South with a horizontal bar between them.  Usually used when sizing a horizontal splitter control.
  34.  
  35. Misc Cursors
  36. -------------
  37. IBeam -- the standard I-Beam cursor used when the mouse is over an EditField.
  38.  
  39. Wait -- the system wait cursor used when a long operation is taking place in which you cannot provide other feedback.